home *** CD-ROM | disk | FTP | other *** search
/ World Tours: Brazil / WorldTours: Brazil.iso / mac / content / main.dir / 00053_Script_roll up < prev    next >
Text File  |  2007-04-22  |  492b  |  26 lines

  1. global chapterCount,firstChapter
  2.  
  3. on beginsprite
  4.   check()
  5. end
  6.  
  7. on mousedown
  8.   firstChapter=firstChapter-1
  9.   if firstChapter<1 then firstChapter=1
  10.   reflashChapterList()
  11.   check()
  12. end
  13.  
  14. on check
  15.   if firstChapter=1 then
  16.     sprite(the currentspriteNum).locH=-320
  17.   else
  18.     sprite(the currentspriteNum).locH=320
  19.   end if
  20.   if firstChapter=chapterCount-8 then
  21.     sprite(the currentspriteNum+1).locH=-320
  22.   else
  23.     sprite(the currentspriteNum+1).locH=320
  24.   end if
  25. end
  26.